home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc Source Code / Layout / Bias.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-22  |  1.3 KB  |  54 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        Bias.h
  3.  
  4.     Contains:    Definitions of private utility functions
  5.  
  6.     Owned by:    Joshua Susser
  7.  
  8.     Copyright:    © 1994 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.     
  12.          <2>     9/29/94    JBS        1188214: more coord bias impl
  13.          <1>     9/22/94    JBS        first checked in
  14. */
  15.  
  16. #ifndef _BIAS_
  17. #define _BIAS_
  18.  
  19. #ifndef _ODTYPES_
  20. #include "ODTypes.h"
  21. #endif
  22.  
  23. //==============================================================================
  24. // Classes used by this interface
  25. //==============================================================================
  26.  
  27. class Environment;
  28. class ODCanvas;
  29. class ODShape;
  30. class ODTransform;
  31.  
  32. //==============================================================================
  33. // Functions
  34. //==============================================================================
  35.  
  36. ODPoint
  37. BiasPointGet(Environment *ev, ODPoint* point, ODCanvas* biasCanvas);
  38.  
  39. ODPoint
  40. BiasPointSet(Environment *ev, ODPoint* point, ODCanvas* biasCanvas);
  41.  
  42. ODShape*
  43. BiasShapeGet(Environment *ev, ODShape* shape, ODCanvas* biasCanvas);
  44.  
  45. ODShape*
  46. BiasShapeSet(Environment *ev, ODShape* shape, ODCanvas* biasCanvas);
  47.  
  48. ODTransform*
  49. BiasTransformGet(Environment *ev, ODTransform* transform, ODCanvas* biasCanvas);
  50.  
  51. ODTransform*
  52. BiasTransformSet(Environment *ev, ODTransform* transform, ODCanvas* biasCanvas);
  53.  
  54. #endif // _BIAS_